b3265887952e1d7ebaf68a749ae75f1a395e444b,platform/vcs-impl/src/com/intellij/openapi/vcs/changes/ui/TreeModelBuilder.java,TreeModelBuilder,staticFrom,#FilePath#,437
Before Change
}
private static StaticFilePath staticFrom(final FilePath fp) {
return new StaticFilePath(fp.isDirectory(), fp.getIOFile().getAbsolutePath(), fp.getVirtualFile());
}
private static StaticFilePath staticFrom(final VirtualFile vf) {
After Change
}
private static StaticFilePath staticFrom(final FilePath fp) {
return new StaticFilePath(fp.isDirectory(), new File(fp.getIOFile().getPath().replace('\\', '/')).getAbsolutePath(), fp.getVirtualFile());
}
private static StaticFilePath staticFrom(final VirtualFile vf) {